博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
正则表达式JSP实例
阅读量:4948 次
发布时间:2019-06-11

本文共 1450 字,大约阅读时间需要 4 分钟。

<%@ page language="java" import="java.util.*,cn.com.Person,cn.com.Adddress" pageEncoding="UTF-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%>              My JSP 'El.jsp' starting page    	
<% String data="assd"; request.setAttribute("data", data); %>
${data }
<% Person p=new Person(); p.setName("name"); request.setAttribute("person", p); %>
${person.name}
<% Person p2=new Person(); Adddress add=new Adddress(); add.setCity("NewYork"); p2.setAddress(add); request.setAttribute("p2", p2); %>
${p2.address.city}
<% ArrayList list=new ArrayList(); list.add(new Person("wy")); list.add(new Person("wyy")); list.add(new Person("wyyy")); request.setAttribute("list", list); %>
${list[1].name }
<% Map map=new HashMap(); map.put("1", new Person("aaaa")); map.put("b", new Person("bbbb")); map.put("c", new Person("cccc")); map.put("d", new Person("dddd")); request.setAttribute("map", map); %>
${map.b.name} ${map['1'].name }
${pageContext.request.contextPath}

转载于:https://www.cnblogs.com/suncoolcat/p/3343522.html

你可能感兴趣的文章
Java Annotation之应用篇 – 运行期动态解析annotation (3)
查看>>
UVa 10806 Dijkstra,Dijkstra(最小费用最大流)
查看>>
linux系统配置参数修改
查看>>
软件工程结对作业01
查看>>
并发回射服务器的最基本实现思路( fork )
查看>>
Linux 操作系统中的进程结构
查看>>
hadoop系列 第一坑: hdfs JournalNode Sync Status
查看>>
Tomcat6的相关配置
查看>>
Linux学习之CentOS--CentOS6.下Mysql数据库的安装与配置
查看>>
(原创)一个轻量级、高性能的消息分发器的实现
查看>>
HDU 1180 诡异的楼梯【BFS/楼梯随时间变化】
查看>>
剑指offer-二叉树的下一个节点
查看>>
445. Add Two Numbers II【Medium】【两个链表求和】
查看>>
open()函数详解
查看>>
XCode中设置字体大小
查看>>
VBScript学习笔记 - 函数和子例程
查看>>
ckpt convert to pb
查看>>
SQLServer存储引擎——05.索引的结构和分类
查看>>
oracle优雅for 循环插入 in loop insert
查看>>
存储登录
查看>>